home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 25 / MacFormat n. 25 (Spain) / MacFormat 25.bin / mac / Demos / Print Artist Demo / PA12-Mac.Dxr / 00557.ls < prev    next >
Encoding:
Text File  |  1996-10-03  |  624 b   |  20 lines

  1. on exitFrame
  2.   global memThreshold, playMode
  3.   set memThreshold to 4120000
  4.   if (the platform = "Macintosh,68K") and (the freeBytes < memThreshold) then
  5.     set playMode to "64KMemLow"
  6.   else
  7.     if (the platform = "Macintosh,68K") and (the freeBytes > memThreshold) then
  8.       set playMode to "64KMemOK"
  9.     else
  10.       if (the platform = "Macintosh,PowerPC") and (the freeBytes < memThreshold) then
  11.         set playMode to "PPCMemLow"
  12.       else
  13.         if (the platform = "Macintosh,PowerPC") and (the freeBytes > memThreshold) then
  14.           set playMode to "PPCMemOK"
  15.         end if
  16.       end if
  17.     end if
  18.   end if
  19. end
  20.